home *** CD-ROM | disk | FTP | other *** search
/ Die Ultimative Software-P…i Collection 1996 & 1997 / Die Ultimative Software-Pakete CD-ROM fur Atari Collection 1996 & 1997.iso / g / gnu_c / gmlibs30.zoo / makefile.32 < prev    next >
Encoding:
Makefile  |  1993-05-21  |  700 b   |  35 lines

  1. # Makefile for the GCC Gem interface library (32 bit int default)
  2.  
  3. CC= gcc
  4. CPP= gcc-cpp
  5. AR= gcc-ar
  6. AS= $(CC)
  7.  
  8. LIB = d:\gnu\lib
  9.  
  10. # common subset of options; no int size or omit-frame-pointer:
  11. COPTS= -O2 -I. -fstrength-reduce -DNDEBUG $(XFLAGS)
  12.  
  13. # Base options CC; includes int size but not omit-frame-pointer
  14. CFFLAGS = $(COPTS)
  15.  
  16. # normal CFLAGS including int size and omit-frame-pointer
  17. CFLAGS= $(CFFLAGS) -fomit-frame-pointer
  18.  
  19. # cflags for stuff that needs to be compiled with 32 bit ints
  20. CLFLAGS= $(CFLAGS)
  21.  
  22. # flags to $(CC) when it runs the assembler only
  23. ASFLAGS= -c
  24.  
  25. # pre-processor flags
  26. PPFLAGS= -P -DNDEBUG
  27.  
  28. # library targets
  29. GEMLIB= gem.olb
  30.  
  31. # the stuff to make
  32. ALL= $(GEMLIB)
  33.  
  34. include mincl
  35.